Interface ParserViewManager

All Superinterfaces:
IPCObject, Process
All Known Implementing Classes:
ParserViewManagerImpl

public interface ParserViewManager extends Process
Information provided by the PKI file:

    \class ParserViewManager
    
    \brief ParserViewManager manages and manipulates the parser view.
    
Author:
Auto-generated
  • Method Details

    • addView

      boolean addView(String viewName)
      Information provided by the PKI file:
      
          \brief Adds a view with the specified name.
          
          \param viewName, the name for the view.
          
          \return bool, true if successful, otherwise false.
          
              
      Parameters:
      viewName - Takes in a parameter of viewName
      Returns:
      boolean Returns a boolean
    • removeView

      boolean removeView(String viewName)
      Information provided by the PKI file:
      
          \brief Removes the view the specified name.
          
          \param viewName, the name of the view.
          
          \return bool, true if successful, otherwise false.
          
              
      Parameters:
      viewName - Takes in a parameter of viewName
      Returns:
      boolean Returns a boolean
    • getViewCount

      int getViewCount()
      Information provided by the PKI file:
      
          \brief Returns the number of views.
          
          \return int, the number of views.
          
              
      Returns:
      int Returns a int
    • getViewAt

      ParserView getViewAt(int index)
      Information provided by the PKI file:
      
          \brief Returns the view at the specified index.
          
          \param index, the index of the view of interest.
          
          \return ParserView, the ParserView object at the specified index.
          
              
      Parameters:
      index - Takes in a parameter of index
      Returns:
      ParserView Returns a ParserView
    • getView

      ParserView getView(String name)
      Information provided by the PKI file:
      
          \brief Returns the view with the specified name.
          
          \param name, the name of the view of interest.
          
          \return ParserView, the ParserView object with the specified name.
          
              
      Parameters:
      name - Takes in a parameter of name
      Returns:
      ParserView Returns a ParserView